home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19981211-19990422 / 000452_news@watsun.cc.columbia.edu _Wed Apr 21 11:02:55 1999.msg < prev   
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@watsun.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA16953
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 21 Apr 1999 11:02:54 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA12108
  7.     for kermit.misc@watsun.cc.columbia.edu; Wed, 21 Apr 1999 10:36:31 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Modems, Xmodem, VMS, etc. ?????
  11. Date: 21 Apr 1999 14:36:31 GMT
  12. Organization: Columbia University
  13. Message-ID: <7fknpf$bqa$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <371DD6A2.808B11A@email.hsc.vcu.edu>,
  17. Jim Agnew  <agnew@email.hsc.vcu.edu> wrote:
  18. : Paul Lentz wrote:
  19. : > 
  20. : > Dale A. Dellutri wrote:
  21. : > >
  22. : > > On Sun, 18 Apr 1999 11:51:45 -0500,
  23. : > > Paul Lentz <plentz@airmail.net> wrote:
  24. : > > > I need to pick up a file from a bank's info service using XMODEM.
  25. : > 
  26. : > > Use C-Kermit.  The most recent version for VMS is 7.0.195 Beta.05,
  27. :
  28. Beta.06 was announced on Monday:
  29.  
  30.   http://www.columbia.edu/kermit/ck70.html
  31.  
  32. : > Sorry Dale, Like I said it needs to be XMODEM and I have no control over
  33. : > the other end.
  34. :
  35. XMODEM is not exactly a robust protocol for financial transactions.
  36. The bank should think again.
  37.  
  38. : hhmm... i'm aware under dos kermit it's possible to run zmodem and
  39. : xmodem under the kermit program...
  40. :
  41. It's possible under C-Kermit too, at least in UNIX.  For the past several
  42. years, C-Kermit has had a "set protocol" command to let you set up external
  43. protocols.  This works in UNIX when the external protocol program uses
  44. standard input and output.
  45.  
  46. This frequently requested feature has not been implemented in the VMS version
  47. of C-Kermit yet.  However, it's not too late to get it into C-Kermit 7.0.
  48. Any VMS C programmers who would like to help and are comfortable with
  49. sys$qio..(), subprocess manipulation, etc, please contact me.
  50.  
  51. Meanwhile, as noted in the current VMS C-Kermit documentation, there is a way
  52. to accomplish the same thing "by hand".  Quoting from CKVKER.BWR:
  53.  
  54. You can use the ZMODEM SZ and RZ commands as "external protocols" over a
  55. connection you have established with C-Kermit, to a host or service that
  56. does not support Kermit protocol.  Start the file transfer on the remote
  57. end, escape back to C-Kermit, give the SPAWN command, and then (for example):
  58.  
  59.   $ define tt xxx:
  60.   $ rz
  61.  
  62. where xxx is the designation of the terminal device (TT or LTA) that you have
  63. dialed out on.  When the transfer is complete, LOGOUT from the SPAWN'd
  64. subprocess and you'll be back at the C-Kermit prompt.
  65.  
  66. (End quote)
  67.  
  68. - Frank
  69.  
  70.